cursorBS
sop4618_SSourcesop4618_ScursorBS
Description Source Call Graph
Start Line: 239
void sop4618_S::cursorBS(uint8_t count)
{
  if(count < 1 || count > m_Cols)
    return;
    
  for(int x=0;x<count;x++)
    putch('\b');
    delay(10);
    flush();
}